aboutsummaryrefslogtreecommitdiffstats
path: root/src/pages/thematique/[slug].tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages/thematique/[slug].tsx')
-rw-r--r--src/pages/thematique/[slug].tsx18
1 files changed, 12 insertions, 6 deletions
diff --git a/src/pages/thematique/[slug].tsx b/src/pages/thematique/[slug].tsx
index cf610c7..95b4780 100644
--- a/src/pages/thematique/[slug].tsx
+++ b/src/pages/thematique/[slug].tsx
@@ -119,18 +119,24 @@ const ThematicPage: NextPageWithLayout<ThematicPageProps> = ({
topics
? [
<LinksListWidget
+ heading={
+ <Heading isFake level={3}>
+ {thematicsListTitle}
+ </Heading>
+ }
+ items={getLinksListItems(thematics)}
// eslint-disable-next-line react/jsx-no-literals -- Key allowed
key="thematics"
- items={getLinksListItems(thematics)}
- title={thematicsListTitle}
- level={2}
/>,
<LinksListWidget
+ heading={
+ <Heading isFake level={3}>
+ {topicsListTitle}
+ </Heading>
+ }
+ items={getLinksListItems(topics)}
// eslint-disable-next-line react/jsx-no-literals -- Key allowed
key="related-topics"
- items={getLinksListItems(topics)}
- title={topicsListTitle}
- level={2}
/>,
]
: []